C# Find first thing on a list

86

C# Find first thing on a list -

//If you are using .net 3.5 or later:

myList.First()

//if not

myList[0]

Comments

Submit
0 Comments